home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / CURSOFF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  205 b   |  14 lines

  1. #include <dos.h>
  2.  
  3. void CursorOff()
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x0300;
  8.     int86( 0x10, ®, ® );
  9.  
  10.     reg.x.ax = 0x0100;
  11.     reg.h.ch = (reg.h.ch & 0x0f) | 0x10;
  12.     int86( 0x10, ®, ® );
  13. }
  14.